home *** CD-ROM | disk | FTP | other *** search
- function main()
- {
- if(this.procNum == 1 && _root.gplayFlg == true)
- {
- }
- if(this.procNum == 2)
- {
- this.fall();
- }
- }
- function move(nAngle)
- {
- this.protation = nAngle - 270;
- this.py = _parent.handMC._y;
- this.px = _parent.handMC._x;
- }
- function entryFall(nAngle)
- {
- this.adr = nAngle;
- this.procNum = 2;
- this.pdy = 0;
- }
- function fall()
- {
- this.protation += this.adr;
- this.py += this.pdy;
- this.pdy += 1;
- }
- function clrMC()
- {
- this.removeMovieClip();
- }
- this.px = 250;
- this.py = 270;
- this.pRotation = 0;
- this.pdy = 0;
- this.adr = 0;
- this.procNum = 1;
-